3df554620ef7517284d9e0db466f5bc68a11e9ce,src/main/java/jeresources/profiling/Profiler.java,Profiler,profileWorld,#WorldServer#,50

Before Change


    {
        final ProfilingExecutor executor = new ProfilingExecutor(this);
        this.currentExecutor = executor;
        this.allDimensionData.put(worldServer.provider.getDimension(), new ProfiledDimensionData());

        DummyWorld dummyWorld = new DummyWorld(worldServer);
        dummyWorld.init();

After Change


    {
        final ProfilingExecutor executor = new ProfilingExecutor(this);
        this.currentExecutor = executor;
        int dimId = worldServer.provider.getDimensionType().getId();
        this.allDimensionData.put(dimId, new ProfiledDimensionData());

        DummyWorld dummyWorld = new DummyWorld(worldServer);